home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Plain Pop-up Menu Configuration
- ;
- Comment('Configured for Plain (Generic) pop-up menus:')
- Comment(' ')
- Comment(' Left Button: Pop-up menu with keys F1 thru F10, "/", and "?"')
- Comment(' Middle Button: Enter key')
- Comment(' Right Button: Esc key')
- Comment(' ')
-
- ;
- ; Parameters
- ;
- Sensitivity (5, 8) ; (Xinc, Yinc)
- Hysteresis (2, 2) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (no) ; Menu is in a fixed position
- EnableBeep (Yes) ; Beeps if wrong button pressed with menu up
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBM: Button (Menu(Main)) ; Left button, Main Menu
- MB: Button (Keys([Enter])) ; Middle button
- RB: Button (Keys([Esc])) ; Right button
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main")
- Item ("F1", Keys([F1]))
- Item ("F2", Keys([F2]))
- Item ("F3", Keys([F3]))
- Item ("F4", Keys([F4]))
- Item ("F5", Keys([F5]))
- Item ("F6", Keys([F6]))
- Item ("F7", Keys([F7]))
- Item ("F8", Keys([F8]))
- Item ("F9", Keys([F9]))
- Item ("F10", Keys([F10]))
- Item ("/", Keys("/"))
- Item ("?", Keys("?"))
- )
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBM)
- Middle (MB)
- LeftRight(MB)
- Right (RB)
- Cursor (ArrowKeys)
- )